feat(perf): Track last loads per block in mem2reg and remove them if possible#6088
Merged
feat(perf): Track last loads per block in mem2reg and remove them if possible#6088
Conversation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Problem*
Resolves
Part of general effort to improve mem2reg.
Summary*
We sometimes have situations such as the following:
v2does not have a known value, thus we do not remove the load. The mem2reg pass is acting as expected here. However, without a store or call to the reference betweenv11 = load v2andv12 = load v2we should be able to safely removev12 = load v2and mapv12 -> v11.This PR adds this logic as part of the initial mem2reg pass. We have a new
last_loadsmap as part of aBlock. This is currently cleared after analyzing block and is meant to only be per block. Unifying these last loads across blocks and the accurate predecessors can come in a follow-up. This is an initial proof of concept to show the optimizations validity.Given an instruction we act as following:
Load
Store
Call
I have also added two unit tests to
mem2reg.rsAdditional Context
Documentation*
Check one:
PR Checklist*
cargo fmton default settings.